home *** CD-ROM | disk | FTP | other *** search
- /*** File Class Implementation: file.c ***/
-
- #include "file.h"
-
- CONSTRUCTOR(File,())
- CONSTRUCT(Object,())
- END_CONSTRUCTOR
-
- DESTRUCTOR(File)
- END_DESTRUCTOR
-
- DEF_CLASS(File,Object)
- DEF_ABSTRACT(File,Seek);
- DEF_ABSTRACT(File,Read);
- DEF_ABSTRACT(File,Write);
- END_CLASS